翻訳と辞書
Words near each other
・ Opaheke railway station
・ Opak River
・ Opaka
・ Opaka (disambiguation)
・ Opaka Duża
・ Opaka Rocks
・ Opaka, Poland
・ Opaki Railway Station
・ Opal
・ Opal (apple)
・ Opal (armoured personnel carrier)
・ Opal (band)
・ Opal (disambiguation)
・ Opal (fuel)
・ Opal (given name)
Opal (programming language)
・ OPAL (software)
・ Opal Butterfly
・ Opal card
・ Opal card rollout dates
・ Opal Carew
・ Opal City
・ Opal Cliffs, California
・ Opal Cone
・ Opal Cortlandt
・ Opal Creek Wilderness
・ Opal Divine's
・ Opal Dream
・ OPAL experiment
・ Opal Hill


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Opal (programming language) : ウィキペディア英語版
Opal (programming language)
OPAL (OPtimized Applicative Language) is a functional programming language first developed at the Technical University of Berlin.
==Example program==
This is an example OPAL program, which calculates the GCD recursively.


Signature file:
SIGNATURE GCD
FUN GCD: nat
*
* nat -> nat
Implementation file:
IMPLEMENTATION GCD
IMPORT Nat COMPLETELY
DEF GCD(a,b) == IF a % b = 0 THEN b
ELSE IF a-b < b THEN GCD(b,a-b)
ELSE GCD(a-b,b)
FI
FI

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Opal (programming language)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.